3.10.7 \(\int \frac {x^5 (a+b x)^n}{(c x^2)^{5/2}} \, dx\)

Optimal. Leaf size=31 \[ \frac {x (a+b x)^{n+1}}{b c^2 (n+1) \sqrt {c x^2}} \]

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 31, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 20, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.100, Rules used = {15, 32} \begin {gather*} \frac {x (a+b x)^{n+1}}{b c^2 (n+1) \sqrt {c x^2}} \end {gather*}

Antiderivative was successfully verified.

[In]

Int[(x^5*(a + b*x)^n)/(c*x^2)^(5/2),x]

[Out]

(x*(a + b*x)^(1 + n))/(b*c^2*(1 + n)*Sqrt[c*x^2])

Rule 15

Int[(u_.)*((a_.)*(x_)^(n_))^(m_), x_Symbol] :> Dist[(a^IntPart[m]*(a*x^n)^FracPart[m])/x^(n*FracPart[m]), Int[
u*x^(m*n), x], x] /; FreeQ[{a, m, n}, x] &&  !IntegerQ[m]

Rule 32

Int[((a_.) + (b_.)*(x_))^(m_), x_Symbol] :> Simp[(a + b*x)^(m + 1)/(b*(m + 1)), x] /; FreeQ[{a, b, m}, x] && N
eQ[m, -1]

Rubi steps

\begin {align*} \int \frac {x^5 (a+b x)^n}{\left (c x^2\right )^{5/2}} \, dx &=\frac {x \int (a+b x)^n \, dx}{c^2 \sqrt {c x^2}}\\ &=\frac {x (a+b x)^{1+n}}{b c^2 (1+n) \sqrt {c x^2}}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 31, normalized size = 1.00 \begin {gather*} \frac {x (a+b x)^{n+1}}{b c^2 (n+1) \sqrt {c x^2}} \end {gather*}

Antiderivative was successfully verified.

[In]

Integrate[(x^5*(a + b*x)^n)/(c*x^2)^(5/2),x]

[Out]

(x*(a + b*x)^(1 + n))/(b*c^2*(1 + n)*Sqrt[c*x^2])

________________________________________________________________________________________

IntegrateAlgebraic [F]  time = 0.24, size = 0, normalized size = 0.00 \begin {gather*} \int \frac {x^5 (a+b x)^n}{\left (c x^2\right )^{5/2}} \, dx \end {gather*}

Verification is not applicable to the result.

[In]

IntegrateAlgebraic[(x^5*(a + b*x)^n)/(c*x^2)^(5/2),x]

[Out]

Defer[IntegrateAlgebraic][(x^5*(a + b*x)^n)/(c*x^2)^(5/2), x]

________________________________________________________________________________________

fricas [A]  time = 1.49, size = 37, normalized size = 1.19 \begin {gather*} \frac {\sqrt {c x^{2}} {\left (b x + a\right )} {\left (b x + a\right )}^{n}}{{\left (b c^{3} n + b c^{3}\right )} x} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^5*(b*x+a)^n/(c*x^2)^(5/2),x, algorithm="fricas")

[Out]

sqrt(c*x^2)*(b*x + a)*(b*x + a)^n/((b*c^3*n + b*c^3)*x)

________________________________________________________________________________________

giac [F]  time = 0.00, size = 0, normalized size = 0.00 \begin {gather*} \int \frac {{\left (b x + a\right )}^{n} x^{5}}{\left (c x^{2}\right )^{\frac {5}{2}}}\,{d x} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^5*(b*x+a)^n/(c*x^2)^(5/2),x, algorithm="giac")

[Out]

integrate((b*x + a)^n*x^5/(c*x^2)^(5/2), x)

________________________________________________________________________________________

maple [A]  time = 0.00, size = 29, normalized size = 0.94 \begin {gather*} \frac {x^{5} \left (b x +a \right )^{n +1}}{\left (n +1\right ) \left (c \,x^{2}\right )^{\frac {5}{2}} b} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x^5*(b*x+a)^n/(c*x^2)^(5/2),x)

[Out]

(b*x+a)^(n+1)/b/(n+1)*x^5/(c*x^2)^(5/2)

________________________________________________________________________________________

maxima [A]  time = 1.45, size = 31, normalized size = 1.00 \begin {gather*} \frac {{\left (b \sqrt {c} x + a \sqrt {c}\right )} {\left (b x + a\right )}^{n}}{b c^{3} {\left (n + 1\right )}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^5*(b*x+a)^n/(c*x^2)^(5/2),x, algorithm="maxima")

[Out]

(b*sqrt(c)*x + a*sqrt(c))*(b*x + a)^n/(b*c^3*(n + 1))

________________________________________________________________________________________

mupad [B]  time = 0.23, size = 42, normalized size = 1.35 \begin {gather*} \frac {\left (\frac {x^2}{c^2\,\left (n+1\right )}+\frac {a\,x}{b\,c^2\,\left (n+1\right )}\right )\,{\left (a+b\,x\right )}^n}{\sqrt {c\,x^2}} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((x^5*(a + b*x)^n)/(c*x^2)^(5/2),x)

[Out]

((x^2/(c^2*(n + 1)) + (a*x)/(b*c^2*(n + 1)))*(a + b*x)^n)/(c*x^2)^(1/2)

________________________________________________________________________________________

sympy [F]  time = 0.00, size = 0, normalized size = 0.00 \begin {gather*} \begin {cases} \frac {x^{6}}{a c^{\frac {5}{2}} \left (x^{2}\right )^{\frac {5}{2}}} & \text {for}\: b = 0 \wedge n = -1 \\\frac {a^{n} x^{6}}{c^{\frac {5}{2}} \left (x^{2}\right )^{\frac {5}{2}}} & \text {for}\: b = 0 \\\int \frac {x^{5}}{\left (c x^{2}\right )^{\frac {5}{2}} \left (a + b x\right )}\, dx & \text {for}\: n = -1 \\\frac {a x^{5} \left (a + b x\right )^{n}}{b c^{\frac {5}{2}} n \left (x^{2}\right )^{\frac {5}{2}} + b c^{\frac {5}{2}} \left (x^{2}\right )^{\frac {5}{2}}} + \frac {b x^{6} \left (a + b x\right )^{n}}{b c^{\frac {5}{2}} n \left (x^{2}\right )^{\frac {5}{2}} + b c^{\frac {5}{2}} \left (x^{2}\right )^{\frac {5}{2}}} & \text {otherwise} \end {cases} \end {gather*}

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x**5*(b*x+a)**n/(c*x**2)**(5/2),x)

[Out]

Piecewise((x**6/(a*c**(5/2)*(x**2)**(5/2)), Eq(b, 0) & Eq(n, -1)), (a**n*x**6/(c**(5/2)*(x**2)**(5/2)), Eq(b,
0)), (Integral(x**5/((c*x**2)**(5/2)*(a + b*x)), x), Eq(n, -1)), (a*x**5*(a + b*x)**n/(b*c**(5/2)*n*(x**2)**(5
/2) + b*c**(5/2)*(x**2)**(5/2)) + b*x**6*(a + b*x)**n/(b*c**(5/2)*n*(x**2)**(5/2) + b*c**(5/2)*(x**2)**(5/2)),
 True))

________________________________________________________________________________________